home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Advisor / CD-ROM Advisor.iso / prodemo / demo / dylan.dxr / 00003.ls < prev    next >
Encoding:
Text File  |  1995-09-13  |  344 b   |  10 lines

  1. on enterFrame
  2.   global gCuesForVoice, gLabelsForVoiceCues, gCountOfCues, gPreTicksForCue, gNextCueIndex
  3.   set currentTimerTick to the timer
  4.   if gNextCueIndex <= gCountOfCues then
  5.     if currentTimerTick >= (getAt(gCuesForVoice, gNextCueIndex) - gPreTicksForCue) then
  6.       go(getAt(gLabelsForVoiceCues, gNextCueIndex))
  7.     end if
  8.   end if
  9. end
  10.